home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / SETTIME.ZIP / README.1ST < prev    next >
Text File  |  1996-03-07  |  2KB  |  36 lines

  1. Here is some minimal documentation for SetTime, the freeware NTP client
  2. written as a straightforward example of Visual C++, MFC, Windows and WinSock
  3. programming.
  4.  
  5. There is really only one item that needs to be checked, and it applies only
  6. to those few individuals that *need* to have a TZ (timezone) variable defined,
  7. for whatever purpose.
  8.  
  9. Namely, if you have a TZ variable defined in your Win95 or NT 3.51
  10. environment, make sure it is correctly defined.
  11.  
  12. For example, if you're on daylight savings time, ensure that fact is
  13. represented in the TZ variable. Here in Calgary, my TZ variable is set thusly:
  14. SET TZ=MST7MDT to reflect that we're 7 hours behind GMT, or 8 hours behind
  15. during periods of daylight savings time.
  16.  
  17. The vast majority of users do not explicitly set a TZ variable,
  18. choosing instead to let Win95 or NT manage the timezone as part of the
  19. Control Panel's Time and Date applet.
  20.  
  21. This suits me as SetTime does not perform any timezone calculations. Rather,
  22. it reads back the local time, corrected for timezone, from the operating
  23. system. This works great except for those hosers that have over-riden their
  24. localtime by incorrectly defining a TZ variable.
  25.  
  26. So, make sure your localtime is correctly set, either by allowing the
  27. operating system to manage it, or ensuring your TZ variable, if you have one,
  28. is correct.
  29.  
  30. I would welcome any questions from budding Windows programmers on the methods
  31. used in this simple program. Just drop a line to pinter@p-squared.com.
  32.  
  33. Welcome to the wonderful world of Microsoft Foundation Classes...
  34.  
  35. /p2
  36.